Load data store keys as symbols, not strings.
This commit is contained in:
parent
52e3c4d3b3
commit
a84ea6a5b8
|
@ -13,7 +13,7 @@ module Vagrant
|
|||
return if !file_path
|
||||
|
||||
File.open(file_path, "r") do |f|
|
||||
merge!(JSON.parse(f.read))
|
||||
merge!(JSON.parse(f.read, :symbolize_names => true))
|
||||
end
|
||||
rescue Errno::ENOENT
|
||||
clear
|
||||
|
|
|
@ -19,19 +19,19 @@ class DataStoreTest < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
should "read the data" do
|
||||
assert_equal @initial_data["foo"], @instance["foo"]
|
||||
assert_equal @initial_data[:foo], @instance["foo"]
|
||||
end
|
||||
|
||||
should "write the data, but not save it right away" do
|
||||
@instance["foo"] = "changed"
|
||||
assert_equal "changed", @instance["foo"]
|
||||
assert_equal @initial_data["foo"], @klass.new(@db_file)["foo"]
|
||||
@instance[:foo] = "changed"
|
||||
assert_equal "changed", @instance[:foo]
|
||||
assert_equal @initial_data[:foo], @klass.new(@db_file)["foo"]
|
||||
end
|
||||
|
||||
should "write the data if commit is called" do
|
||||
@instance["foo"] = "changed"
|
||||
@instance[:foo] = "changed"
|
||||
@instance.commit
|
||||
|
||||
assert_equal "changed", @klass.new(@db_file)["foo"]
|
||||
assert_equal "changed", @klass.new(@db_file)[:foo]
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue