spec/tonic/tonic_spec.rb in tonic-0.0.2 vs spec/tonic/tonic_spec.rb in tonic-0.0.3
- old
+ new
@@ -1,18 +1,37 @@
\ No newline at end of file
+require 'tonic'
+
+describe Tonic do
+ context 'Tonic will' do
+
+ before :all do
+ system 'cd spec/dummy_git_repo'
+ end
+
+ it "" do
+ Tonic.activate([]).should =~ /not in root of your repo/
+ end
+
+ after :all do
+ system 'cd ...'
+ end
+
+ end
+end