import React from 'react';
import TestUtils from 'react-addons-test-utils';
let { Col, Row } = require('../components/grid/index');
describe('Grid', function() {
it('should render Col', () => {
const col = TestUtils.renderIntoDocument(
);
const colNode = TestUtils.findRenderedDOMComponentWithTag(col, 'DIV');
expect(colNode.className).toBe('ant-col-2');
});
it('should render Row', () => {
const row = TestUtils.renderIntoDocument(
);
const rowNode = TestUtils.findRenderedDOMComponentWithTag(row, 'DIV');
expect(rowNode.className).toBe('ant-row');
});
});