# File tests/base_test.rb, line 111 def flex_object m = flexmock("funfx") m.should_receive(:getTabularData).with("tempid", nil, nil).and_return("tabularvalue1,tabularvalue2") m.should_receive(:getTabularData).with("tempid", 0, 0).and_return("tabularvalue1") m.should_receive(:getTabularData).with("tempid", 0, nil).and_return("tabularvalue1") m.should_receive(:getTabularData).with("tempid", 1, 1).and_return("") return m end