Reorg test fixtures

This commit is contained in:
Joshua Peek
2012-06-07 12:17:24 -05:00
parent a708993388
commit 4df3199818
153 changed files with 130 additions and 314 deletions

3
test/fixtures/ruby/Capfile vendored Normal file
View File

@@ -0,0 +1,3 @@
load 'deploy'
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
load 'config/deploy'

3
test/fixtures/ruby/Rakefile vendored Normal file
View File

@@ -0,0 +1,3 @@
task :default do
puts "Rake"
end

2
test/fixtures/ruby/foo.rb vendored Normal file
View File

@@ -0,0 +1,2 @@
module Foo
end

2
test/fixtures/ruby/grit.rb vendored Normal file
View File

@@ -0,0 +1,2 @@
module Grit
end

2
test/fixtures/ruby/macruby-script vendored Executable file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env macruby
puts "MacRuby"

4
test/fixtures/ruby/script.rake vendored Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env rake
task :default do
puts "Rake"
end

2
test/fixtures/ruby/script.rb vendored Executable file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env ruby
puts "Ruby"

2
test/fixtures/ruby/script2.rb vendored Normal file
View File

@@ -0,0 +1,2 @@
#! /usr/bin/env ruby -w -Ilib:test
echo "Ruby"

2
test/fixtures/ruby/wrong_shebang.rb vendored Normal file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env python
puts "Not Python"