From e53b0646d2980a02b79af51a691d8e34c05e609e Mon Sep 17 00:00:00 2001 From: Etiene Dalcol Date: Sun, 11 Oct 2015 21:56:26 +0200 Subject: [PATCH] fix(tests): Adds posts fixtures to dev-app tests Its absence was erroing the automated tests. --- test/dev-app/tests/fixtures/post.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/dev-app/tests/fixtures/post.lua diff --git a/test/dev-app/tests/fixtures/post.lua b/test/dev-app/tests/fixtures/post.lua new file mode 100644 index 0000000..4a32495 --- /dev/null +++ b/test/dev-app/tests/fixtures/post.lua @@ -0,0 +1,10 @@ +return { + { + author_id = 1, + body = "Hello World" + }, + { + author_id = 1, + body = "Hello 2" + } +} \ No newline at end of file