test/cli/commands/test_sync.rb in nanoc-3.7.4 vs test/cli/commands/test_sync.rb in nanoc-3.7.5
- old
+ new
@@ -1,7 +1,6 @@
class Nanoc::CLI::Commands::SyncTest < Nanoc::TestCase
-
def test_run
with_site do
File.open('lib/foo_data_source.rb', 'w') do |io|
io.write "class FooDataSource < Nanoc::DataSource\n"
io.write " identifier :sync_test_foo\n"
@@ -23,7 +22,6 @@
assert File.file?('foo_source_data.yaml')
assert_equal File.read('foo_source_data.yaml'), 'sync: true'
end
end
-
end