Skip to content

Commit

Permalink
test 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
idw111 committed Sep 8, 2015
1 parent 33038e8 commit 32d8080
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "sejong-morphemes",
"version": "0.3.1",
"version": "0.3.2",
"description": "decode morphemes text into morphemes object, or encode morphemes object into morphemes text based on tags from sejong project",
"author": {
"name": "Dongwon Lim",
Expand Down
4 changes: 2 additions & 2 deletions test/index.js
Expand Up @@ -65,8 +65,8 @@ describe('hangul-morphemes', function () {
var phrase = new Phrase(words[0], words[1]);
expect(phrase.toString()).to.be('1 2 ??? 정치가/NNG');
expect(phrase.connects(0, 1)).to.be.ok();
phrase.tag('SBJ');
expect(phrase.toString()).to.be('1 2 SBJ 정치가/NNG');
phrase.tag('SUBJ');
expect(phrase.toString()).to.be('1 2 SUBJ 정치가/NNG');
});

it('문장을 인자로 하여 문장구조 객체를 생성할 수 있다.', function() {
Expand Down

0 comments on commit 32d8080

Please sign in to comment.