diff --git a/tests/Aggregation/Pipeline/StatsBucketAggregationTest.php b/tests/Aggregation/Pipeline/StatsBucketAggregationTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..47fa412a9fe3f7662b1813f80cf5a36a171e5687
--- /dev/null
+++ b/tests/Aggregation/Pipeline/StatsBucketAggregationTest.php
@@ -0,0 +1,36 @@
+<?php
+
+/*
+ * This file is part of the ONGR package.
+ *
+ * (c) NFQ Technologies UAB <info@nfq.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace ONGR\ElasticsearchDSL\Tests\Aggregation\Pipeline;
+
+use ONGR\ElasticsearchDSL\Aggregation\Pipeline\StatsBucketAggregation;
+
+/**
+ * Unit test for stats bucket aggregation.
+ */
+class StatsBucketAggregationTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Tests toArray method.
+     */
+    public function testToArray()
+    {
+        $aggregation = new StatsBucketAggregation('acme', 'test');
+
+        $expected = [
+            'stats_bucket' => [
+                'buckets_path' => 'test',
+            ],
+        ];
+
+        $this->assertEquals($expected, $aggregation->toArray());
+    }
+}