Sha256: 93c3addcbb90a9a9a84bad80cdf045b685b68b3e84b1cac039ef1cbe3da7daea
Contents?: true
Size: 465 Bytes
Versions: 12
Compression:
Stored size: 465 Bytes
Contents
# Encoding: utf-8 require 'spec_helper' require 'selenium_connect/report/main_report' describe SeleniumConnect::Report::MainReport do before(:each) do @data = { key: 'value' } @report = SeleniumConnect::Report::MainReport.new @data end it 'should be initialized with data' do @report.should be_an_instance_of SeleniumConnect::Report::MainReport end it 'should simply return the data for now' do @report.data.should be @data end end
Version data entries
12 entries across 12 versions & 1 rubygems