Exclude percent encoding from skeptic (#561)

* Exclude percent encoding from skeptic

* Exclude tests that are affected by skeptic #111

* More failing tests exlcuded from Skeptic

* add ignore to infostring
This commit is contained in:
Andrew Gauger 2019-12-16 18:23:09 -08:00 committed by GitHub
parent 084f51cff9
commit bc641257e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 8 additions and 7 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ target/
book/ book/
*.swp *.swp
lines.txt lines.txt
.idea/

View file

@ -5,7 +5,7 @@
Randomly generates a tuple `(i32, bool, f64)` and variable of user defined type `Point`. Randomly generates a tuple `(i32, bool, f64)` and variable of user defined type `Point`.
Implements the [`Distribution`] trait on type Point for [`Standard`] in order to allow random generation. Implements the [`Distribution`] trait on type Point for [`Standard`] in order to allow random generation.
```rust ```rust,ignore
extern crate rand; extern crate rand;
use rand::Rng; use rand::Rng;

View file

@ -11,7 +11,7 @@ generator [`rand::Rng`].
The [distributions available are documented here][rand-distributions]. An example using the The [distributions available are documented here][rand-distributions]. An example using the
[`Normal`] distribution is shown below. [`Normal`] distribution is shown below.
```rust ```
extern crate rand; extern crate rand;
use rand::distributions::{Normal, Distribution}; use rand::distributions::{Normal, Distribution};

View file

@ -5,7 +5,7 @@
Randomly generates a string of given length ASCII characters in the range `A-Z, Randomly generates a string of given length ASCII characters in the range `A-Z,
a-z, 0-9`, with [`Alphanumeric`] sample. a-z, 0-9`, with [`Alphanumeric`] sample.
```rust ```rust,ignore
extern crate rand; extern crate rand;
use rand::{thread_rng, Rng}; use rand::{thread_rng, Rng};

View file

@ -4,7 +4,7 @@
Generates a random value within half-open `[0, 10)` range (not including `10`) with [`Rng::gen_range`]. Generates a random value within half-open `[0, 10)` range (not including `10`) with [`Rng::gen_range`].
```rust ```rust,ignore
extern crate rand; extern crate rand;
use rand::Rng; use rand::Rng;
@ -20,7 +20,7 @@ fn main() {
This has the same effect, but may be faster when repeatedly generating numbers This has the same effect, but may be faster when repeatedly generating numbers
in the same range. in the same range.
```rust ```rust,ignore
extern crate rand; extern crate rand;

View file

@ -9,7 +9,7 @@ values in parallel. Although [multiple options]
exist to sort an enumerable data type, [`par_sort_unstable`] exist to sort an enumerable data type, [`par_sort_unstable`]
is usually faster than [stable sorting] algorithms. is usually faster than [stable sorting] algorithms.
```rust ```rust,ignore
extern crate rand; extern crate rand;
extern crate rayon; extern crate rayon;

View file

@ -6,7 +6,7 @@ Encode an input string with [percent-encoding] using the [`utf8_percent_encode`]
function from the `percent-encoding` crate. Then decode using the [`percent_decode`] function from the `percent-encoding` crate. Then decode using the [`percent_decode`]
function. function.
```rust ```rust,ignore
extern crate percent_encoding; extern crate percent_encoding;
use percent_encoding::{utf8_percent_encode, percent_decode, AsciiSet, CONTROLS}; use percent_encoding::{utf8_percent_encode, percent_decode, AsciiSet, CONTROLS};