fuzzbert 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
|