Various code style improvements

This commit is contained in:
Igor Alexandrov
2023-06-18 23:39:44 +04:00
parent aa28ee0f3e
commit dadd8225da
6 changed files with 54 additions and 42 deletions

View File

@@ -68,8 +68,8 @@ class ConfigurationBuilderTest < ActiveSupport::TestCase
assert_equal "unix:///Users/<%= `whoami`.strip %>/.docker/run/docker.sock", @config_with_builder_option.builder.local_host
end
test "cache?" do
assert_equal false, @config.builder.cache?
test "cached?" do
assert_equal false, @config.builder.cached?
end
test "invalid cache type specified" do
@@ -148,4 +148,4 @@ class ConfigurationBuilderTest < ActiveSupport::TestCase
assert_equal "..", @config_with_builder_option.builder.context
end
end
end