test/extra/deployers/test_rsync.rb in nanoc-4.0.0b4 vs test/extra/deployers/test_rsync.rb in nanoc-4.0.0rc1
- old
+ new
@@ -55,11 +55,11 @@
# Check args
opts = Nanoc::Extra::Deployers::Rsync::DEFAULT_OPTIONS
assert_equal(
['rsync', opts, 'output/', 'asdf'].flatten,
- rsync.instance_eval { @shell_cms_args }
+ rsync.instance_eval { @shell_cms_args },
)
end
def test_run_everything_okay_dry
# Create deployer
@@ -78,9 +78,9 @@
# Check args
opts = Nanoc::Extra::Deployers::Rsync::DEFAULT_OPTIONS
assert_equal(
['echo', 'rsync', opts, 'output/', 'asdf'].flatten,
- rsync.instance_eval { @shell_cms_args }
+ rsync.instance_eval { @shell_cms_args },
)
end
end