Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test/component/layout #524

Merged
merged 2 commits into from
Oct 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions test/unit/specs/col.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import { createVue } from '../util';

describe('Col', () => {
it('create', () => {
const vm = createVue({
template: `
<el-col :span="12">
</el-col>
`
}, true);
let colElm = vm.$el;
expect(colElm.classList.contains('el-col')).to.be.true;
});
it('span', () => {
const vm = createVue({
template: `
<el-col :span="12">
</el-col>
`
}, true);
let colElm = vm.$el;
expect(colElm.classList.contains('el-col-12')).to.be.true;
});
it('pull', () => {
const vm = createVue({
template: `
<el-col :span="12" :pull="3">
</el-col>
`
}, true);
let colElm = vm.$el;
expect(colElm.classList.contains('el-col-pull-3')).to.be.true;
});
it('push', () => {
const vm = createVue({
template: `
<el-col :span="12" :push="3">
</el-col>
`
}, true);
let colElm = vm.$el;
expect(colElm.classList.contains('el-col-push-3')).to.be.true;
});
});
39 changes: 39 additions & 0 deletions test/unit/specs/row.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { createTest } from '../util';
import Row from 'packages/row';

describe('Row', () => {
it('create', () => {
const vm = createTest(Row, true);
let rowElm = vm.$el;
expect(rowElm.classList.contains('el-row')).to.be.true;
});
it('gutter', () => {
const vm = createTest(Row, {
gutter: 20
}, true);
let rowElm = vm.$el;
expect(rowElm.style.marginLeft).to.be.equal('-10px');
expect(rowElm.style.marginRight).to.be.equal('-10px');
});
it('type', () => {
const vm = createTest(Row, {
type: 'flex'
}, true);
let rowElm = vm.$el;
expect(rowElm.classList.contains('el-row--flex')).to.be.true;
});
it('justify', () => {
const vm = createTest(Row, {
justify: 'end'
}, true);
let rowElm = vm.$el;
expect(rowElm.classList.contains('is-justify-end')).to.be.true;
});
it('align', () => {
const vm = createTest(Row, {
align: 'bottom'
}, true);
let rowElm = vm.$el;
expect(rowElm.classList.contains('is-align-bottom')).to.be.true;
});
});