test/lib/vedeu/configuration_test.rb in vedeu-0.1.12 vs test/lib/vedeu/configuration_test.rb in vedeu-0.1.13
- old
+ new
@@ -19,8 +19,13 @@
it 'returns the options which instructs Vedeu to run in raw mode' do
Configuration.configure(['--raw'])
.must_equal({ mode: :raw })
end
+
+ it 'returns the options which instructs Vedeu to run with debugging on' do
+ Configuration.configure(['--debug'])
+ .must_equal({ debug: true })
+ end
end
end
end