fuzzbert 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -190,7 +190,7 @@ fuzz "My Web App" do
|
|
190
190
|
data "JSON generated from a template" do
|
191
191
|
t = FuzzBert::Template.new '{ user: { id: ${id}, name: "${name}" } }'
|
192
192
|
t.set(:id, FuzzBert::Generators.cycle(1..10000))
|
193
|
-
t.set(:name) { "
|
193
|
+
t.set(:name) { "Fixed text plus two random bytes: #{FuzzBert::Generators.random_fixlen(2).call}" }
|
194
194
|
t.generator
|
195
195
|
end
|
196
196
|
|