Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2014-09-03 02:16:29 +0400
committerGleb Mazovetskiy <glex.spb@gmail.com>2014-09-03 02:16:29 +0400
commitceb9c87a3c67e1f40f2727925b1ca45aa7a817b1 (patch)
tree4d55b36f5e46a60549c91a10a95f8733f314c10c /test
parentfc8d477e88da2e056cdf13d74d49e600c71130fc (diff)
rbx require without extname
Diffstat (limited to 'test')
-rw-r--r--test/test_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb
index b2fd1f2b..95666abd 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -6,7 +6,7 @@ require 'active_support/core_ext/kernel/reporting'
Dir.chdir 'test' do
Dir['support/**/*.rb'].each do |file|
- load file
+ require file[0..-4] # strip .rb suffix
end
end