Sha256: 3d950087687b9f9607a05cde235afd1907098c627f0ce1946c2a22d2f0b6c04a
Contents?: true
Size: 949 Bytes
Versions: 1
Compression:
Stored size: 949 Bytes
Contents
unless RUBY_VERSION.to_s < '1.9.0' require 'simplecov' SimpleCov.command_name('cql-rspec') end # Ruby 1.8.x seems to have trouble if relative paths get too nested, so resolving the path before using it here this_dir = File.expand_path(File.dirname(__FILE__)) require "#{this_dir}/../../../lib/cql" require "#{this_dir}/../../../lib/cql/model_dsl" require "#{this_dir}/../../cql_test_model" require "#{this_dir}/../../model_helper" require "#{this_dir}/tag_filterable_specs" require "#{this_dir}/name_filterable_specs" require "#{this_dir}/line_count_filterable_specs" require "#{this_dir}/line_filterable_specs" require "#{this_dir}/queriable_specs" CQL_FEATURE_FIXTURES_DIRECTORY = "#{this_dir}/../../fixtures/features" RSpec.configure do |config| include CQL::ModelHelper if Gem.loaded_specs['cuke_modeler'].version.version[/^0/] config.filter_run_excluding :cuke_modeler_1x => true end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cql-1.5.0 | testing/rspec/spec/spec_helper.rb |