diff options
Diffstat (limited to 'spec/fixtures/busted_project/sum.lua')
-rw-r--r-- | spec/fixtures/busted_project/sum.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/fixtures/busted_project/sum.lua b/spec/fixtures/busted_project/sum.lua new file mode 100644 index 00000000..ba12805a --- /dev/null +++ b/spec/fixtures/busted_project/sum.lua | |||
@@ -0,0 +1,7 @@ | |||
1 | local sum = {} | ||
2 | |||
3 | function sum.sum(a, b) | ||
4 | return a + b | ||
5 | end | ||
6 | |||
7 | return sum | ||