Sha256: 91dd9809ac5e4e7d4d99112c8a5ad6fb89519c365721c3607edb63dd7ed88b9f
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
module Volt class << self def spec_setup(app_path = '.') require 'volt' ENV['SERVER'] = 'true' ENV['VOLT_ENV'] = 'test' require 'volt/boot' # Require in app Volt.boot(app_path) unless RUBY_PLATFORM == 'opal' require 'volt/spec/capybara' setup_capybara(app_path) end # Setup the spec collection accessors # RSpec.shared_context "volt collections", {} do RSpec.shared_examples_for 'volt collections', {} do # Page conflicts with capybara's page method # let(:page) { Model.new } let(:store) do @__store_accessed = true $page ||= Page.new $page.store end after do if @__store_accessed # Clear the database after each spec where we use store # @@db ||= Volt::DataStore.fetch # puts "DB CLASS: #{@@db.inspect}" # @@db.drop_database ::DataStore.new.drop_database $page.instance_variable_set('@store', nil) end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
volt-0.8.27.beta6 | lib/volt/spec/setup.rb |
volt-0.8.27.beta5 | lib/volt/spec/setup.rb |
volt-0.8.27.beta4 | lib/volt/spec/setup.rb |