Sha256: 7c2df28b4d92804346b369d9b6cef56d76ab172cf2fa207cca8f63029e307246
Contents?: true
Size: 835 Bytes
Versions: 3
Compression:
Stored size: 835 Bytes
Contents
require 'rubygems' require 'rspec' require 'rspec/its' $LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'lib'))) require 'jpmobile' begin require File.dirname(__FILE__)+'/../../vendor/jpmobile-ipaddresses/lib/jpmobile-ipaddresses' rescue LoadError puts "IP Address test requires jpmobile-ipaddresses module" end begin require File.dirname(__FILE__)+'/../../vendor/jpmobile-terminfo/lib/jpmobile-terminfo' rescue LoadError puts "Terminal display information test requires jpmobile-terminfo module" end RSpec.configure do |config| config.filter_run :focus => true config.run_all_when_everything_filtered = true config.color = true config.filter_run_excluding :broken => true config.expect_with :rspec do |c| c.syntax = [:should, :expect] end # config.full_backtrace = true end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jpmobile-4.1.5 | spec/unit/spec_helper.rb |
jpmobile-4.1.4 | spec/unit/spec_helper.rb |
jpmobile-4.1.1 | spec/unit/spec_helper.rb |