Rakefile in nephos-server-0.5.4 vs Rakefile in nephos-server-0.6.1

- old
+ new

@@ -3,5 +3,18 @@ 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