This commit is contained in:
Loic Nageleisen 2014-12-10 18:33:15 +01:00
commit 32b99b62bf
20 changed files with 644 additions and 0 deletions

7
test/bar.rb Normal file
View file

@ -0,0 +1,7 @@
import 'foo'
HELLO = 'BAR'
def hello
"i am bar and I can access #{foo.name}"
end

5
test/foo.rb Normal file
View file

@ -0,0 +1,5 @@
HELLO = 'FOO'
def hello
'i am foo'
end

5
test/foo/baz.rb Normal file
View file

@ -0,0 +1,5 @@
HELLO = 'BAZ'
def hello
'i am baz'
end