Remove the bootstrap.css test. It’s not actually useful.

This commit is contained in:
Simon Sapin 2013-12-17 17:55:42 +01:00
parent b6b89639dc
commit c4c332b234
3 changed files with 0 additions and 6820 deletions

View file

@ -34,6 +34,3 @@ mod properties;
mod namespaces;
mod media_queries;
mod parsing_utils;
#[cfg(test)]
mod tests;

File diff suppressed because it is too large Load diff

View file

@ -1,12 +0,0 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use super::stylesheets::Stylesheet;
#[test]
fn test_bootstrap() {
// Test that parsing bootstrap does not trigger an assertion or otherwise fail.
let stylesheet = Stylesheet::from_str(include_str!("bootstrap-v3.0.0.css"));
assert!(stylesheet.rules.len() > 100); // This depends on whet selectors are supported.
}