Load data store keys as symbols, not strings.

This commit is contained in:
Mitchell Hashimoto 2010-09-02 21:19:44 -07:00
parent 52e3c4d3b3
commit a84ea6a5b8
2 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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