Sha256: 3f1570b261033da552d05683dcb30a04a771aa5cc86edc311ed51323ac42d77f

Contents?: true

Size: 478 Bytes

Versions: 4

Compression:

Stored size: 478 Bytes

Contents

#encoding: utf-8

require 'colorize'

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

  namespace :functional do
    task :internet do
      ruby "test/functional.rb internet"
    end
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nephos-server-0.7.2 Rakefile
nephos-server-0.7.1 Rakefile
nephos-server-0.7.0 Rakefile
nephos-server-0.6.9 Rakefile