Sha256: cc7fbaaa1a4da071eae1ed4efad6de6da467417f25bf77502459d7d42b802ce0

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

require File.expand_path( File.dirname(__FILE__) + '/../test_helper')
require 'zxing/decodable'

class DecodableTest < MiniTest::Test

  class Object::File
    include Decodable
  end

  class URL
    include Decodable
    def initialize(path)
      @path = path
    end
    def path; @path end
  end

  context "A Decodable module" do
    setup do
      @file = File.open( File.expand_path( File.dirname(__FILE__) + '/../qrcode.png' ))
      @uri = URL.new "http://2d-code.co.uk/images/bbc-logo-in-qr-code.gif"
      @bad_uri = URL.new "http://google.com"
    end

    should "provide #decode to decode the return value of #path" do
      assert_equal @file.decode, ZXing.decode(@file.path)
      assert_equal @uri.decode, ZXing.decode(@uri.path)
      assert_nil @bad_uri.decode
    end

    should "provide #decode! as well" do
      assert_equal @file.decode!, ZXing.decode(@file.path)
      assert_equal @uri.decode!, ZXing.decode(@uri.path)
      assert_raises(ZXing::BadImageException) { @bad_uri.decode! }
    end
  end

end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
zxing_cpp_mac_big_sur-0.1.1 test/zxing/test_decodable.rb
zxing_cpp_no_cmake-0.1.2 test/zxing/test_decodable.rb
zxing_cpp-0.1.1 test/zxing/test_decodable.rb
zxing_cpp-0.1.0 test/zxing/test_decodable.rb