https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
501 B
14 lines
501 B
![]()
11 years ago
|
var render = require('../helper/render');
|
||
|
var ruleset = require('../helper/ruleset');
|
||
|
|
||
|
describe("CSS3 Border Radius", function () {
|
||
|
|
||
|
it("should generate a border radius", function (done) {
|
||
|
render(ruleset('$experimental-support-for-mozilla: false; $experimental-support-for-opera: false; @include border-radius(0, 0);'), function(output, err) {
|
||
|
expect(output).toBe(ruleset('-webkit-border-radius:0 0;border-radius:0 / 0;'));
|
||
|
done();
|
||
|
}, ['compass/css3/border-radius']);
|
||
|
});
|
||
|
|
||
|
});
|