aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pstore.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pstore.rb')
-rw-r--r--test/test_pstore.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/test_pstore.rb b/test/test_pstore.rb
index 678ffa4a62..e10ce906cb 100644
--- a/test/test_pstore.rb
+++ b/test/test_pstore.rb
@@ -17,14 +17,14 @@ class PStoreTest < Test::Unit::TestCase
assert_nil @pstore[:bar]
end
end
-
+
def test_opening_new_file_in_readwrite_mode_should_result_in_empty_values
@pstore.transaction do
assert_nil @pstore[:foo]
assert_nil @pstore[:bar]
end
end
-
+
def test_data_should_be_loaded_correctly_when_in_readonly_mode
@pstore.transaction do
@pstore[:foo] = "bar"
@@ -33,7 +33,7 @@ class PStoreTest < Test::Unit::TestCase
assert_equal "bar", @pstore[:foo]
end
end
-
+
def test_data_should_be_loaded_correctly_when_in_readwrite_mode
@pstore.transaction do
@pstore[:foo] = "bar"
@@ -42,7 +42,7 @@ class PStoreTest < Test::Unit::TestCase
assert_equal "bar", @pstore[:foo]
end
end
-
+
def test_changes_after_commit_are_discarded
@pstore.transaction do
@pstore[:foo] = "bar"
@@ -53,7 +53,7 @@ class PStoreTest < Test::Unit::TestCase
assert_equal "bar", @pstore[:foo]
end
end
-
+
def test_changes_are_not_written_on_abort
@pstore.transaction do
@pstore[:foo] = "bar"
@@ -63,7 +63,7 @@ class PStoreTest < Test::Unit::TestCase
assert_nil @pstore[:foo]
end
end
-
+
def test_writing_inside_readonly_transaction_raises_error
assert_raise(PStore::Error) do
@pstore.transaction(true) do