File: Rakefile

package info (click to toggle)
ruby-highline 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 800 kB
  • sloc: ruby: 5,789; sh: 7; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (2)
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