1
0
mirror of https://github.com/danog/gift.git synced 2024-11-26 20:04:47 +01:00
gift/test/actor.test.coffee
2014-06-20 02:08:29 +02:00

44 lines
1.1 KiB
CoffeeScript

should = require 'should'
Actor = require '../src/actor'
describe "Actor", ->
describe ".constructor", ->
actor = new Actor "bob", "bob@example.com"
it "assigns @name", ->
actor.name.should.eql "bob"
it "assigns @email", ->
actor.email.should.eql "bob@example.com"
describe "#toString", ->
actor = new Actor "bob", "bob@example.com"
it "is a string representation of the actor", ->
actor.toString().should.eql "bob <bob@example.com>"
describe "#hash", ->
actor = new Actor "bob", "bob@example.com"
it "is the md5 hash of the email", ->
actor.hash.should.eql "4b9bb80620f03eb3719e0a061c14283d"
describe ".from_string", ->
describe "with a name and email", ->
actor = Actor.from_string "bob <bob@example.com>"
it "parses the name", ->
actor.name.should.eql "bob"
it "parses the email", ->
actor.email.should.eql "bob@example.com"
describe "with only a name", ->
actor = Actor.from_string "bob"
it "parses the name", ->
actor.name.should.eql "bob"
it "does not parse the email", ->
should.not.exist actor.email