Sha256: fa9b7e0b36e6d2964f630b5838cc0e1dcdc47d15ef967c7e7fea4e2a26d2c03c
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
require 'helper' class TestRemoteTable < Test::Unit::TestCase should "open an XLSX" do t = RemoteTable.new 'www.customerreferenceprogram.org/uploads/CRP_RFP_template.xlsx' assert_equal "Secure encryption of all data", t[5]["Requirements"] end should "add a row hash to every row" do t = RemoteTable.new(:url => 'www.customerreferenceprogram.org/uploads/CRP_RFP_template.xlsx') assert_equal "06d8a738551c17735e2731e25c8d0461", t[5]['row_hash'] end should "open a google doc" do t = RemoteTable.new 'http://spreadsheets.google.com/pub?key=tObVAGyqOkCBtGid0tJUZrw' assert_equal 'Seamus Abshere', t[0]['name'] end should "open a csv with custom headers" do t = RemoteTable.new 'http://spreadsheets.google.com/pub?key=tObVAGyqOkCBtGid0tJUZrw', :headers => %w{ col1 col2 col3 } assert_equal 'name', t[0]['col2'] assert_equal 'Seamus Abshere', t[1]['col2'] end should "return an ordered hash" do t = RemoteTable.new 'http://spreadsheets.google.com/pub?key=tObVAGyqOkCBtGid0tJUZrw' assert_equal ::ActiveSupport::OrderedHash, t[0].class end should "pass through fastercsv options" do f = Tempfile.new 'pass-through-fastercsv-options' f.write %{3,Title example,Body example with a <a href="">link</a>,test category} f.flush t = RemoteTable.new "file://#{f.path}", :quote_char => %{'}, :headers => nil assert_equal %{Body example with a <a href="">link</a>}, t[0][2] f.close end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
remote_table-1.1.2 | test/test_remote_table.rb |