Sha256: 200e1c0bc00f8e20433544fc671bddd26fd68049db40676baf24b5d7fc67b56c

Contents?: true

Size: 352 Bytes

Versions: 4

Compression:

Stored size: 352 Bytes

Contents

#encoding: utf-8

task :default => [:test]

task :test do
  ruby "test/test.rb"
end

namespace :test do

  desc "Unitary tests. Fasts and on the sources."
  task :test do
    ruby "test/test.rb"
  end

  desc "Functional tests. Slow, test real the features under real conditions of usage."
  task :functional do
    ruby "test/functional.rb"
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nephos-server-0.6.4 Rakefile
nephos-server-0.6.3 Rakefile
nephos-server-0.6.2 Rakefile
nephos-server-0.6.1 Rakefile