Remove fivemat
This commit is contained in:
parent
b0c90e1192
commit
dcbeb7dc76
4 changed files with 3 additions and 5 deletions
1
Gemfile
1
Gemfile
|
@ -8,7 +8,6 @@ gem 'yard', '~> 0.8', require: false
|
|||
gem 'pry', '~> 0.10', group: :development
|
||||
gem 'aruba', '~> 0.7.4'
|
||||
gem 'rspec', '~> 3.0'
|
||||
gem 'fivemat', '~> 1.3'
|
||||
gem 'cucumber', '~> 2.0'
|
||||
|
||||
# Optional middleman dependencies, included for tests
|
||||
|
|
|
@ -21,7 +21,7 @@ Cucumber::Rake::Task.new do |t|
|
|||
exempt_tags << '--tags ~@encoding' unless Object.const_defined?(:Encoding)
|
||||
exempt_tags << '--tags ~@nowindows' if Gem.win_platform?
|
||||
exempt_tags << '--tags ~@travishatesme' if ENV['TRAVIS'] == 'true'
|
||||
t.cucumber_opts = "--require features --color #{exempt_tags.join(' ')} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
||||
t.cucumber_opts = "--require features --color #{exempt_tags.join(' ')} --strict"# --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
||||
end
|
||||
|
||||
Cucumber::Rake::Task.new(:cucumber_wip) do |t|
|
||||
|
@ -29,7 +29,7 @@ Cucumber::Rake::Task.new(:cucumber_wip) do |t|
|
|||
exempt_tags << '--tags ~@nojava' if RUBY_PLATFORM == 'java'
|
||||
exempt_tags << '--tags ~@encoding' unless Object.const_defined?(:Encoding)
|
||||
exempt_tags << '--tags ~@nowindows' if Gem.win_platform?
|
||||
t.cucumber_opts = "--color #{exempt_tags.join(' ')} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
||||
t.cucumber_opts = "--color #{exempt_tags.join(' ')} --strict"# --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
||||
end
|
||||
|
||||
require 'rspec/core/rake_task'
|
||||
|
|
|
@ -13,7 +13,6 @@ end
|
|||
|
||||
group :test do
|
||||
gem 'cucumber'
|
||||
gem 'fivemat'
|
||||
gem 'aruba'
|
||||
gem 'rspec'
|
||||
end
|
||||
|
|
|
@ -4,7 +4,7 @@ Bundler::GemHelper.install_tasks
|
|||
require 'cucumber/rake/task'
|
||||
|
||||
Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
|
||||
t.cucumber_opts = "--color --tags ~@wip --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
||||
t.cucumber_opts = "--color --tags ~@wip --strict"
|
||||
end
|
||||
|
||||
require 'rake/clean'
|
||||
|
|
Loading…
Reference in a new issue