diff options
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/rspec.rake | 6 | ||||
-rw-r--r-- | tasks/testing.rake | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/tasks/rspec.rake b/tasks/rspec.rake new file mode 100644 index 0000000..c89c0d7 --- /dev/null +++ b/tasks/rspec.rake @@ -0,0 +1,6 @@ +require 'rspec/core/rake_task' + +desc "Run specs" +RSpec::Core::RakeTask.new do |t| + t.pattern = "./spec" +end diff --git a/tasks/testing.rake b/tasks/testing.rake new file mode 100644 index 0000000..5f8b63a --- /dev/null +++ b/tasks/testing.rake @@ -0,0 +1,8 @@ +namespace :refinery do + namespace :testing do + # Put any code in here that you want run when you test this extension against a dummy app. + # For example, the call to require your gem and start your generator. + task :setup_extension do + end + end +end |