Skip to content

Commit

Permalink
Update tests to Minitest
Browse files Browse the repository at this point in the history
  • Loading branch information
alouanemed committed Aug 24, 2015
1 parent 20d2fd5 commit 606dd84
Show file tree
Hide file tree
Showing 26 changed files with 483 additions and 476 deletions.
13 changes: 8 additions & 5 deletions Rakefile
@@ -1,13 +1,16 @@
require 'bundler/gem_tasks'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
t.pattern = 'spec/**/*_spec.rb'
require 'rake/testtask'

Rake::TestTask.new do |t|
t.libs << "lib"
t.libs << "test"
t.pattern = "test/*_test.rb"
end


desc 'Default: run all tests.'
task :default => :spec
task :test => :spec
task :default => :test


load File.dirname(__FILE__) + '/lib/state_machines/tasks/state_machines.rake'
92 changes: 0 additions & 92 deletions spec/graph_spec.rb

This file was deleted.

215 changes: 0 additions & 215 deletions spec/machine_drawing_spec.rb

This file was deleted.

19 changes: 0 additions & 19 deletions spec/machine_spec.rb

This file was deleted.

2 changes: 0 additions & 2 deletions spec/spec_helper.rb

This file was deleted.

0 comments on commit 606dd84

Please sign in to comment.