Sha256: f818f38876d755ca30d1dff5f9a892eb66fb02041d3a48f8997b04924930b271
Contents?: true
Size: 466 Bytes
Versions: 1
Compression:
Stored size: 466 Bytes
Contents
require 'test_helper' require 'flipper/adapters/pstore' class PstoreTest < MiniTest::Test prepend SharedAdapterTests def setup dir = FlipperRoot.join("tmp").tap { |d| d.mkpath } pstore_file = dir.join("flipper.pstore") pstore_file.unlink if pstore_file.exist? @adapter = Flipper::Adapters::PStore.new(pstore_file) end def test_defaults_path_to_flipper_pstore assert_equal Flipper::Adapters::PStore.new.path, "flipper.pstore" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
flipper-0.8.0 | test/adapters/pstore_test.rb |