Sha256: db946011accc2d4275e31eb006b1542644decce58e658c4c9a5c2839cf2c2e76
Contents?: true
Size: 823 Bytes
Versions: 6
Compression:
Stored size: 823 Bytes
Contents
require 'spec_helper' describe Spree::Admin::BaseHelper, type: :helper do include Spree::Admin::BaseHelper context "#datepicker_field_value" do it "should return nil when date is empty" do date = nil expect(datepicker_field_value(date)).to be_nil end it "should return a formatted date when date is present" do date = "2013-08-14".to_time expect(datepicker_field_value(date)).to eq("2013/08/14") end end context "#plural_resource_name" do it "should return correct form of class" do resource_class = Spree::Product expect(plural_resource_name(resource_class)).to eq("Products") end end context "#order_time" do it "prints in a format" do expect(order_time(DateTime.new(2016, 5, 6, 13, 33))).to eq "2016-05-06 1:33 PM" end end end
Version data entries
6 entries across 6 versions & 1 rubygems