test/test_helper.rb in hquery-patient-api-1.0.4 vs test/test_helper.rb in hquery-patient-api-1.1.0
- old
+ new
@@ -1,28 +1,25 @@
require 'tilt'
require 'coffee_script'
require 'sprockets'
require 'execjs'
-
-require 'minitest/autorun'
-
require 'bundler/setup'
require 'test/unit'
-require 'turn'
+
Tilt::CoffeeScriptTemplate.default_bare=true
class QueryExecutor
@@ctx = nil
-
- def self.ctx
+
+ def self.ctx
unless @@ctx
@@ctx = Sprockets::Environment.new(File.expand_path("../../", __FILE__))
@@ctx.append_path "app/assets/javascripts"
end
@@ctx
end
def self.patient_api_javascript
self.ctx.find_asset('patient')
end
-
-end
\ No newline at end of file
+
+end