We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fadc7a commit c95ffc4Copy full SHA for c95ffc4
Gemfile
@@ -40,6 +40,7 @@ group :odbc do
40
end
41
42
group :development do
43
+ gem "turn"
44
gem 'bcrypt-ruby', '~> 3.0.0'
45
gem 'bench_press'
46
gem 'mocha'
test/cases/sqlserver_helper.rb
@@ -1,3 +1,13 @@
1
+begin
2
+ require 'turn'
3
+
4
+ Turn.config do |c|
5
+ c.format = :pretty
6
+ c.trace = 1
7
+ # c.natural = true
8
+ end
9
+rescue LoadError
10
+end
11
12
SQLSERVER_TEST_ROOT = File.expand_path(File.join(File.dirname(__FILE__),'..'))
13
SQLSERVER_ASSETS_ROOT = File.expand_path(File.join(SQLSERVER_TEST_ROOT,'assets'))
0 commit comments