Я изучаю JSSpec.Вот моя проблема.
В этом коде:
describe("Buttons' events", {
'when I click on a button with an id of #b1...': function() {
click_me(document.getElementById("b1"));
},
'...then URL should have a parameter b with the value someURL1 and a parameter ui with the value 527bd5b5d689e2c32ae974c6229ff785), because #b1\'s class is .testme': function() {
value_of(observer.URLforTests_lg).should_match(/http:\/\/swkyb\.com:9000/);
value_of(observer.URLforTests_lg).should_match(/ui=527bd5b5d689e2c32ae974c6229ff785/);
value_of(observer.URLforTests_lg).should_match(/b=someURL1/);
value_of(observer.URLforTests_lg).should_match(/s=tester/);
value_of(observer.URLforTests_lg).should_match(/e=button/);
value_of(observer.URLforTests_lg).should_match(/api=testv/);
}
Я не понимаю, откуда берется значение 527bd5b5d689e2c32ae974c6229ff785
в observer.URLforTests_lg).should_match(/ui=527bd5b5d689e2c32ae974c6229ff785/);
.Я искал эту строку в своем проекте, но не могу найти, где она определена (если так).