mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/psych/test_yamlstore.rb: make test case inherit from MiniTest,
load psych/helper so that psych is loaded. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33654 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a27349a4cb
commit
8ff37e3901
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Nov 7 20:26:37 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
||||
|
||||
* test/psych/test_yamlstore.rb: make test case inherit from MiniTest,
|
||||
load psych/helper so that psych is loaded.
|
||||
|
||||
Mon Nov 7 20:18:29 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
||||
|
||||
* test/psych/test_yamldbm.rb: Test case should inherit from MiniTest,
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
require 'test/unit'
|
||||
require 'psych'
|
||||
require 'psych/helper'
|
||||
require 'yaml/store'
|
||||
require 'tmpdir'
|
||||
|
||||
module Psych
|
||||
Psych::Store = YAML::Store unless defined?(Psych::Store)
|
||||
|
||||
class YAMLStoreTest < Test::Unit::TestCase
|
||||
class YAMLStoreTest < TestCase
|
||||
def setup
|
||||
@engine, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych'
|
||||
@dir = Dir.mktmpdir("rubytest-file")
|
||||
|
@ -78,7 +77,7 @@ module Psych
|
|||
end
|
||||
|
||||
def test_writing_inside_readonly_transaction_raises_error
|
||||
assert_raise(PStore::Error) do
|
||||
assert_raises(PStore::Error) do
|
||||
@yamlstore.transaction(true) do
|
||||
@yamlstore[:foo] = "bar"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue