Sha256: 9105396df797eeeb896c04a3c2e1adb4a924d9aabd9c1d92bb6674618eecf08a

Contents?: true

Size: 306 Bytes

Versions: 1

Compression:

Stored size: 306 Bytes

Contents

describe("Command", function() {
  describe("#toString", function() {
    it("it should be able to get string", function() {
      var command = new Ponytail.Models.Command("rename_table", ":users", ":new_users");
      expect(command.toString()).toBe("rename_table :users, :new_users");
    });
  });
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ponytail-0.3.0 spec/javascripts/ponytail/models/command_spec.js