Rakefile in nephos-server-0.6.8 vs Rakefile in nephos-server-0.6.9
- old
+ new
@@ -10,17 +10,20 @@
namespace :test do
desc "Unitary tests. Fasts and on the sources."
task :test do
- puts
ruby "test/test.rb"
end
desc "Functional tests. Slow, test real the features under real conditions of usage."
task :functional do
- puts "!!! Important !!!".yellow
- puts "You have to access to internet to test the generator.".yellow
- puts
ruby "test/functional.rb"
end
+
+ namespace :functional do
+ task :internet do
+ ruby "test/functional.rb internet"
+ end
+ end
+
end