summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 45def2d04ff73f33afe6a4deccdb9688113efbc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# encoding: utf-8

require "rake/testtask"
require "bundler/gem_tasks"

task default: [:test]

Rake::TestTask.new do |test|
  test.libs       = %w[lib test]
  test.verbose    = true
  test.warning    = true
  test.test_files = FileList["test/test*.rb"]
end

desc "Run some interactive acceptance tests"
task :acceptance do
  load "test/acceptance/acceptance.rb"
end